Approve Fixed Deposit Account
POST /api/v{version}/FixedDeposit/accounts/{accountId}/approve
Description
This endpoint is used to approve a fixed deposit account. The approval process involves providing the account ID and specifying the API version.
Parameters
- accountId (
integer, path, required): The ID of the fixed deposit account to be approved. - version (
string, path, required): The version of the API. - Accept-Language (
string, header, optional): Change the default response message language from English (en). Available languages arefranden.
Responses
- 200 OK
- Media type: Controls Accept header.
- Description: Indicates that the fixed deposit account has been successfully approved.
Example Value
{
"status": "success",
"message": "Fixed deposit account approved successfully."
}
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v{version}/FixedDeposit/accounts/{accountId}/approve \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!